//Scrivere un programma che legga un valore intero di esattamente 5 cifre e determini se si tratta di un numero palindromo oppure no. #include int main(){ char a, b, c, d, e; printf("5 cifre\n"); a=getchar(); b=getchar(); c=getchar(); d=getchar(); e=getchar(); if(a!=e || b!=d) printf("non palindromo\n"); else printf("palindromo"); return 0; }